Python-pip3 인스톨시 SSL에러

파이썬으로 pip install시 SSL 관련 에러로 설치가 불가능할때가 있다.

그럴때 아래과 같이 입력하면 설치가 가능하다.

아래와 같이 입력해도 주황색으로 에러같은게 뜰 수 있다. 일단 기다리면 설치가 완료되니 기다리자.

python2

1
pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org <package_name>

python3

1
pip3 install --trusted-host pypi.org --trusted-host files.pythonhosted.org <package_name>
공유하기